home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
program
/
124
/
lib
/
stdio.h
< prev
next >
Wrap
C/C++ Source or Header
|
1988-03-31
|
425b
|
17 lines
/*
* stdio.h
*
* the standard i/o header
*/
#define FILE char
#define EOF (-1)
#define NULL (0L)
extern FILE *stdin, *stdout, *stderr, *fopen();
extern long mfree(), time(), strtol();
extern char *gets(), *fgets(), *malloc(), *realloc(), *calloc();
extern char *strcat(), *strncat(), *strcpy(), *strncpy();
extern char *strchr(), *strrchr(), *strpbrk(), *strtok();
extern char *strlower(), *strupper();